home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000217-20000824 / 000153_news@columbia.edu _Wed Mar 29 17:04:58 2000.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id RAA03954
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Wed, 29 Mar 2000 17:04:58 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id QAA25202
  7.     for kermit.misc@watsun.cc.columbia.edu; Wed, 29 Mar 2000 16:42:03 -0500 (EST)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  10. Subject: Re: setting tcp/ip printer in NT
  11. Date: 29 Mar 2000 21:42:02 GMT
  12. Organization: Columbia University
  13. Message-ID: <8bttba$ojd$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@columbia.edu
  15.  
  16. In article <8bt7bl$19j$1@nnrp1.deja.com>,  <jhcoutureiii@my-deja.com> wrote:
  17. : Yes, I have done this. I didn't know you could install a printer any
  18. : other way. I can print to it. In most other situations, we capture our
  19. : novell printers to lpt1. Then, in the kermit script, we "set printer
  20. : lpt1" But in this case the PC is not on a novell network, and so that is
  21. : why we had to set up TCP/IP printing for NT. But there is a snag in
  22. : what kermit will take for the "set printer" command.
  23. : Joseph Couture
  24.  
  25. Another note:
  26.  
  27. The following sequence of commands will get you into major trouble.
  28. If your K95CUSTOM.INI file contains the command
  29.  
  30.   SET PRINTER /WINDOWS-QUEUE:
  31.  
  32. and you then set the command
  33.  
  34.   SET PRINTER LPT1:
  35.  
  36. This will result in K95 thinking that your printer is a Windows Printer
  37. Queue with the name "LPT1:".  This is because you are not specifying
  38. a flag to change the printer type.
  39.  
  40. If you want to use the DOS device named "LPT1:" then you must use the
  41. command
  42.  
  43.   SET PRINTER /DOS-DEVICE:LPT1:
  44.  
  45. to both change the device type and name.  
  46.  
  47. The command
  48.  
  49.   SET PRINTER /WINDOWS-QUEUE
  50.  
  51. does not specify a printer name.  It only changes the printer type.
  52. So if your previous printer name was the default "PRN", then the above
  53. command would be equivalent to 
  54.  
  55.   SET PRINTER /WINDOWS-QUEUE:PRN
  56.  
  57. which is clearly not what you want to be used.
  58.  
  59.     Jeffrey Altman * Sr.Software Designer * Kermit-95 for Win32 and OS/2
  60.                  The Kermit Project * Columbia University
  61.               612 West 115th St #716 * New York, NY * 10025
  62.   http://www.kermit-project.org/k95.html * kermit-support@kermit-project.org